blob: ecc0a8a38efe8fa3185eee378a3908d3ecedebed (
plain)
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
|
@font-face {
font-family: "Voces";
src: url(./Voces-Regular.ttf);
font-weight: 300;
font-style: normal
}
@font-face {
font-family: "Judson";
src: url(./Judson-Regular.ttf);
font-weight: 300;
font-style: normal
}
/* TODO check the specifics of variable fonts */
@font-face {
font-family: "Noto Sans";
src: url(./NotoSans-VariableFont_wdth,wght.ttf);
font-weight: 300;
font-style: normal
}
.font-IPA-0 {
font-family: "Voces";
}
.font-IPA-1 {
font-family: "Judson";
}
.font-IPA-2 {
font-family: "Noto Sans";
}
|