From d77b51736a3006f1a71410678a13be9be1bb91ab Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Mon, 1 Jun 2026 10:06:18 +0300 Subject: [PATCH] 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). --- src/app/styles/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/app.css b/src/app/styles/app.css index 89b27ff..4c31a47 100644 --- a/src/app/styles/app.css +++ b/src/app/styles/app.css @@ -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; }