40d68d455a
- Self-host Cormorant Garant WOFF2 files (300/400, normal/italic) in static/fonts/ — no external CDN dependency, GDPR-friendly - Inline @font-face declarations via head-custom.html override - Warm colour palette (ivory #faf8f4, deep warm near-black #0d0b09) - Light theme as default - Hero title: large italic Cormorant Garant 300, uppercased tagline - Intro text uses muted warm tone for visual hierarchy Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
802 B
HTML
31 lines
802 B
HTML
<style>
|
|
@font-face {
|
|
font-family: 'Cormorant Garant';
|
|
src: url('/fonts/CormorantGarant-Light.woff2') format('woff2');
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Cormorant Garant';
|
|
src: url('/fonts/CormorantGarant-LightItalic.woff2') format('woff2');
|
|
font-weight: 300;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Cormorant Garant';
|
|
src: url('/fonts/CormorantGarant-Regular.woff2') format('woff2');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Cormorant Garant';
|
|
src: url('/fonts/CormorantGarant-Italic.woff2') format('woff2');
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
</style>
|