blob: af6c36a0952fe8f12516991564ff14fe2cdd64c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@font-face {
font-family: "Quicksand";
font-weight: 400;
src: url("/fonts/Quicksand-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Drafting";
font-weight: 200;
src: url("/fonts/DraftingMono-ExtraLight.woff2") format("woff2");
}
:root {
--font-family-heading: "Drafting", Times, serif;
--font-family-body: "Quicksand", Arial, sans-serif;
}
|