/*
 * Cormorant Garamond — self-hosted font-face declarations.
 *
 * HOW TO ADD REAL FONT FILES:
 * 1. Visit https://google-webfonts-helper.herokuapp.com/fonts/cormorant-garamond
 * 2. Select weights: 300, 400, 500, 600 (Regular + Italic for each)
 * 3. Download the zip and place the .woff2 files in this folder
 * 4. The @font-face rules below will activate automatically
 *
 * Until real files are uploaded, the browser falls back to Georgia / serif.
 * The site will be fully functional — only the custom luxury font is missing.
 */

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: local('Cormorant Garamond'),
         url('cormorant-garamond-v-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300 600;
    font-display: swap;
    src: local('Cormorant Garamond Italic'),
         url('cormorant-garamond-v-latin-italic.woff2') format('woff2');
}

/* Fallback: if woff2 file isn't present, browser silently uses serif */
:root {
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}
