diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-03-22 18:02:52 -0600 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-03-22 18:02:52 -0600 |
commit | f5f542777febe6a2a4463bb8042e9a72e628e724 (patch) | |
tree | c7cb33a5bbb023f99e1c012af55e6819f26c5c93 /styles/fonts.scss | |
parent | 2bf70606fc62c989973f84f2961df2d42d7f9c04 (diff) |
Fonts
Diffstat (limited to 'styles/fonts.scss')
-rw-r--r-- | styles/fonts.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/styles/fonts.scss b/styles/fonts.scss new file mode 100644 index 0000000..af6c36a --- /dev/null +++ b/styles/fonts.scss @@ -0,0 +1,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; +} |