/*
 * Self-Hosted Web Fonts
 *
 * Using system font stack with web-safe fallbacks.
 * For production, download Inter and Playfair Display WOFF2 files
 * from https://fonts.google.com and place them in /assets/fonts/
 *
 * Until the WOFF2 files are installed, this CSS imports from
 * Google Fonts API as a temporary fallback. To fully self-host:
 *
 * 1. Download the fonts from https://gwfh.mranftl.com/fonts
 * 2. Place .woff2 files in /assets/fonts/
 * 3. Uncomment the @font-face rules below and remove the @import
 */

/* --- Temporary Google Fonts import (replace with self-hosted) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- Self-hosted @font-face rules (uncomment when fonts are downloaded) ---

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-var.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-var.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

*/
