15 lines
337 B
CSS
15 lines
337 B
CSS
/* Font declarations are loaded via Bunny Fonts CDN in nuxt.config.ts */
|
|
/* This file provides fallback and utility classes */
|
|
|
|
.font-display {
|
|
font-family: 'Syne', system-ui, sans-serif;
|
|
}
|
|
|
|
.font-sans {
|
|
font-family: 'Space Grotesk', system-ui, sans-serif;
|
|
}
|
|
|
|
.font-mono {
|
|
font-family: 'JetBrains Mono', ui-monospace, monospace;
|
|
}
|