1 | // _fonts.scss |
2 | // Fonts are stored in the S3 bucket, not the local filesystem. |
3 |
|
4 | @font-face { |
5 | font-family: 'Chivo'; |
6 | src: url(/static/fonts/Chivo-Regular.ttf) format('truetype'); |
7 | font-weight: 400; |
8 | font-style: normal; |
9 | } |
10 | @font-face { |
11 | font-family: 'Chivo'; |
12 | src: url(/static/fonts/Chivo-Black.ttf) format('truetype'); |
13 | font-weight: 900; |
14 | font-style: normal; |
15 | } |
16 |
|
17 | @font-face { |
18 | font-family: 'Fira Sans'; |
19 | src: url(/static/fonts/FiraSans-Regular.ttf) format('truetype'); |
20 | font-weight: 400; |
21 | font-style: normal; |
22 | } |
23 | @font-face { |
24 | font-family: 'Fira Sans'; |
25 | src: url(/static/fonts/FiraSans-Italic.ttf) format('truetype'); |
26 | font-weight: 400; |
27 | font-style: italic; |
28 | } |
29 | @font-face { |
30 | font-family: 'Fira Sans'; |
31 | src: url(/static/fonts/FiraSans-Bold.ttf) format('truetype'); |
32 | font-weight: 700; |
33 | font-style: normal; |
34 | } |
35 | @font-face { |
36 | font-family: 'Fira Sans'; |
37 | src: url(/static/fonts/FiraSans-BoldItalic.ttf) format('truetype'); |
38 | font-weight: 700; |
39 | font-style: italic; |
40 | } |
41 |
|
42 | @font-face { |
43 | font-family: 'Fira Mono'; |
44 | src: url(/static/fonts/FiraMono-Regular.ttf) format('truetype'); |
45 | font-weight: 400; |
46 | font-style: monospace; |
47 | } |
48 |
|