ghostguild-org/app/assets/css/fonts.css
Jennie Robinson Faber 52bb17e25d 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.
2026-03-19 13:43:18 +00:00

47 lines
1.2 KiB
CSS

/*
* Font declarations for Ghost Guild
*
* Quietism: Display/heading font (serif)
* Place woff2 files in public/fonts/
* Expected files: Quietism-Regular.woff2, Quietism-Medium.woff2,
* Quietism-Bold.woff2, Quietism-Italic.woff2
*
* Inter and Ubuntu Mono are loaded via @nuxt/fonts module.
* 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");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Quietism";
src: url("/fonts/Quietism-Medium.woff2") format("woff2");
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Quietism";
src: url("/fonts/Quietism-Bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Quietism";
src: url("/fonts/Quietism-Italic.woff2") format("woff2");
font-weight: 400;
font-style: italic;
font-display: swap;
}
*/