From 52bb17e25ddf0735eb3209d3377060cd75bdd5d1 Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Thu, 19 Mar 2026 13:43:18 +0000 Subject: [PATCH] Comment out Quietism font-face declarations to fix slow page loads The .woff2 files are missing from public/fonts/, causing failed requests that 302 redirect and stall page load (16+ seconds). Swap display font to Georgia as a fallback until Quietism files are available. --- app/assets/css/fonts.css | 4 ++++ app/assets/css/main.css | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/assets/css/fonts.css b/app/assets/css/fonts.css index bb94cbf..b999284 100644 --- a/app/assets/css/fonts.css +++ b/app/assets/css/fonts.css @@ -10,6 +10,9 @@ * See nuxt.config.ts for configuration. */ +/* @font-face declarations commented out until .woff2 files are added to public/fonts/ + Uncomment these when Quietism font files are available: + @font-face { font-family: "Quietism"; src: url("/fonts/Quietism-Regular.woff2") format("woff2"); @@ -41,3 +44,4 @@ font-style: italic; font-display: swap; } +*/ diff --git a/app/assets/css/main.css b/app/assets/css/main.css index ed54874..9a1f847 100644 --- a/app/assets/css/main.css +++ b/app/assets/css/main.css @@ -49,8 +49,8 @@ --font-sans: "Inter", sans-serif; --font-body: "Inter", sans-serif; --font-mono: "Ubuntu Mono", monospace; - --font-display: "Quietism", serif; - --font-serif: "Quietism", serif; + --font-display: "Georgia", serif; + --font-serif: "Georgia", serif; /* Guild - warm neutral ground (light mode: dark values for text on light bg) */ --color-guild-50: #1a1510;