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
|
/* Duo */
@font-face {
font-family: "Aporetic";
src: local("Aporetic"), url("/assets/fonts/aporetic-sans-normalbolditalic.woff2");
font-style: italic;
font-weight: bold;
font-display: swap;
}
@font-face {
font-family: "Aporetic";
src: local("Aporetic"), url("/assets/fonts/aporetic-sans-normalboldupright.woff2");
font-style: normal;
font-weight: bold;
font-display: swap;
}
@font-face {
font-family: "Aporetic";
src: local("Aporetic"), url("/assets/fonts/aporetic-sans-normalregularitalic.woff2");
font-style: italic;
font-weight: normal;
font-display: swap;
}
@font-face {
font-family: "Aporetic";
src: local("Aporetic"), url("/assets/fonts/aporetic-sans-normalregularupright.woff2");
font-style: normal;
font-weight: normal;
font-display: swap;
}
/* Mono */
@font-face {
font-family: "Aporetic Mono";
src: local("Aporetic Mono"), url("/assets/fonts/aporetic-sans-mono-normalbolditalic.woff2");
font-style: italic;
font-weight: bold;
font-display: swap;
}
@font-face {
font-family: "Aporetic Mono";
src: local("Aporetic Mono"), url("/assets/fonts/aporetic-sans-mono-normalboldupright.woff2");
font-style: normal;
font-weight: bold;
font-display: swap;
}
@font-face {
font-family: "Aporetic Mono";
src: local("Aporetitalicic Mono"), url("/assets/fonts/aporetic-sans-mono-normalregularitalic.woff2");
font-style: italic;
font-weight: normal;
font-display: swap;
}
@font-face {
font-family: "Aporetic Mono";
src: local("Aporetic Mono"), url("/assets/fonts/aporetic-sans-mono-normalregularupright.woff2");
font-style: normal;
font-weight: normal;
font-display: swap;
}
/* Fallback */
@font-face {
font-family: "Aporetic Fallback";
src: local(-apple-system), local(BlinkMacSystemFont), local("Segoe UI"), local("Noto Sans"), local(Helvetica), local(Arial), local(sans-serif);
ascent-override: 96.5%;
descent-override: -21.5%;
line-gap-override: 0.07%;
}
|