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.
This commit is contained in:
Jennie Robinson Faber 2026-03-19 13:43:18 +00:00
parent c785a23910
commit 52bb17e25d
2 changed files with 6 additions and 2 deletions

View file

@ -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;
}
*/

View file

@ -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;