Replace ghost/whisper/sparkle color palettes with guild/candlelight/parchment/ember/earth tokens. Switch typography from NB Television Pro to Quietism serif. Update all 25 Vue components, layouts, and pages to new design system. Add circle color tokens, typography scale, prose-guild class, and warm texture effects. Clean up stale documentation files.
43 lines
1 KiB
CSS
43 lines
1 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 {
|
|
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;
|
|
}
|