fonts.css
1.31 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
@font-face {
font-family: 'Inter Regular';
font-style: normal;
font-weight: normal;
src: local('Inter Regular'), url('../public/fonts/Inter-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Inter SemiBold';
font-style: normal;
font-weight: normal;
src: local('Inter SemiBold'), url('../public/fonts/Inter-SemiBold.ttf') format('truetype');
}
@font-face {
font-family: 'Inter Bold';
font-style: normal;
font-weight: normal;
src: local('Inter Bold'), url('../public/fonts/Inter-Bold.ttf') format('truetype');
}
@font-face {
font-family: 'Inter Black';
font-style: normal;
font-weight: normal;
src: local('Inter Black'), url('../public/fonts/Inter-Black.ttf') format('truetype');
}
@font-face {
font-family: 'Inter Medium';
font-style: normal;
font-weight: normal;
src: local('Inter Medium'), url('../public/fonts/Inter-Medium.ttf') format('truetype');
}
@font-face {
font-family: 'Sofia Pro Light';
font-style: normal;
font-weight: 300;
src: local('Sofia Pro Light'), url('../public/fonts/SofiaPro-Light.otf') format('opentype');
}
@font-face {
font-family: 'Sofia Pro Bold';
font-style: normal;
font-weight: 700;
src: local('Sofia Pro Bold'), url('../public/fonts/SofiaPro-Bold.ttf') format('truetype');
}