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.
47 lines
1.2 KiB
CSS
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;
|
|
}
|
|
*/
|