-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfonts.css
More file actions
108 lines (97 loc) · 2.63 KB
/
Copy pathfonts.css
File metadata and controls
108 lines (97 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* Font paths are relative to the CSS file (site root). font-display: swap avoids invisible text. */
/* inter-300 - latin */
@font-face {
font-display: swap;
font-family: "Inter";
font-style: normal;
font-weight: 300;
src: url("fonts/inter-v18-latin-300.woff2") format("woff2");
}
/* inter-regular - latin */
@font-face {
font-display: swap;
font-family: "Inter";
font-style: normal;
font-weight: 400;
src: url("fonts/inter-v18-latin-regular.woff2") format("woff2");
}
/* inter-500 - latin */
@font-face {
font-display: swap;
font-family: "Inter";
font-style: normal;
font-weight: 500;
src: url("fonts/inter-v18-latin-500.woff2") format("woff2");
}
/* inter-700 - latin */
@font-face {
font-display: swap;
font-family: "Inter";
font-style: normal;
font-weight: 700;
src: url("fonts/inter-v18-latin-700.woff2") format("woff2");
}
/* Mozilla Headline - ExtraLight */
@font-face {
font-display: swap;
font-family: "Mozilla Headline";
font-style: normal;
font-weight: 200;
src: url("fonts/MozillaHeadline-ExtraLight.ttf") format("truetype");
}
/* Mozilla Headline - Light */
@font-face {
font-display: swap;
font-family: "Mozilla Headline";
font-style: normal;
font-weight: 300;
src: url("fonts/MozillaHeadline-Light.ttf") format("truetype");
}
/* Mozilla Headline - Regular */
@font-face {
font-display: swap;
font-family: "Mozilla Headline";
font-style: normal;
font-weight: 400;
src: url("fonts/MozillaHeadline-Regular.ttf") format("truetype");
}
/* Mozilla Headline - Medium */
@font-face {
font-display: swap;
font-family: "Mozilla Headline";
font-style: normal;
font-weight: 500;
src: url("fonts/MozillaHeadline-Medium.ttf") format("truetype");
}
/* Mozilla Headline - SemiBold */
@font-face {
font-display: swap;
font-family: "Mozilla Headline";
font-style: normal;
font-weight: 600;
src: url("fonts/MozillaHeadline-SemiBold.ttf") format("truetype");
}
/* Mozilla Headline - Bold */
@font-face {
font-display: swap;
font-family: "Mozilla Headline";
font-style: normal;
font-weight: 700;
src: url("fonts/MozillaHeadline-Bold.ttf") format("truetype");
}
/* Space Grotesk - Regular */
@font-face {
font-display: swap;
font-family: "Space Grotesk";
font-style: normal;
font-weight: 400;
src: url("fonts/SpaceGrotesk-Regular.woff2") format("woff2"), url("fonts/SpaceGrotesk-Regular.ttf") format("truetype");
}
/* Space Grotesk - Medium */
@font-face {
font-display: swap;
font-family: "Space Grotesk";
font-style: normal;
font-weight: 500;
src: url("fonts/SpaceGrotesk-Medium.woff2") format("woff2"), url("fonts/SpaceGrotesk-Medium.ttf") format("truetype");
}