From 0c8f89d14e3d6102f356246f89ed7c4dd876f035 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 20 Jun 2026 14:28:58 +0200 Subject: [PATCH] fix(style): load Sono from the api.fonts.coollabs.io host Switch the body font to Sono and point the @import at api.fonts.coollabs.io. The bare fonts.coollabs.io host serves the marketing homepage (HTML), not CSS, so the @font-face rules never loaded and the font silently fell back to system-ui. --- src/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style.css b/src/style.css index de95d33..cc6d4d1 100644 --- a/src/style.css +++ b/src/style.css @@ -3,7 +3,7 @@ @import to precede all other rules. If it comes second, the production build warns ("@import must precede all rules…") and browsers silently DROP the font import, so the custom font never loads. */ -@import url("https://fonts.coollabs.io/css2?family=Inter:wght@400;500;600;700&display=swap"); +@import url("https://api.fonts.coollabs.io/css2?family=Sono:wght@400;500;600;700&display=swap"); @import "tailwindcss"; @plugin "daisyui"; @plugin "daisyui/theme" { @@ -13,7 +13,7 @@ } @theme { - --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif; + --font-sans: "Sono", ui-sans-serif, system-ui, sans-serif; } /* Larger, easier-to-grab connection handles (Vue Flow defaults to 6px). The