fix(styles): default body font to Inter, drop unloaded Karla

The body font-family referenced "Karla", which was never loaded, so
body text silently fell back to system-ui. Point it at the existing
--font-secondary token (Inter + system fallbacks).
This commit is contained in:
Ilia Mashkov
2026-06-01 10:06:18 +03:00
parent 1e16330097
commit d77b51736a
+1 -1
View File
@@ -275,7 +275,7 @@
body {
@apply bg-background text-foreground;
font-family: "Karla", system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
font-family: var(--font-secondary);
font-optical-sizing: auto;
}