Files
takerofnotes-website/styles/_fonts.scss
2026-05-26 14:21:42 -04:00

46 lines
1.0 KiB
SCSS

/*
Font Weights:
100 - Thin
200 - Extra Light (Ultra Light)
300 - Light
400 - Normal
500 - Medium
600 - Semi Bold (Demi Bold)
700 - Bold
800 - Extra Bold (Ultra Bold)
900 - Black (Heavy)
*/
/* Leibniz Fraktur */
@font-face {
font-family: 'Leibniz Fraktur';
font-style: normal;
font-weight: 400;
src:
url('/fonts/neuefraktur.woff2') format('woff2'),
url('/fonts/neuefraktur.woff') format('woff');
}
/* Geist Mono */
@font-face {
font-family: 'Geist Mono';
font-style: normal;
font-weight: 700;
src:
url('/fonts/geist-mono-bold.woff2') format('woff2'),
url('/fonts/geist-mono-bold.woff') format('woff');
}
@font-face {
font-family: 'Geist Mono';
font-style: normal;
font-weight: 400;
src:
url('/fonts/geist-mono.woff2') format('woff2'),
url('/fonts/geist-mono.woff') format('woff');
}
:root {
--font-display: 'Leibniz Fraktur', serif;
--font-mono: 'Geist Mono', monospace;
}