/**
 * Hello Marketplace — Font Loading
 *
 * Loads Inter (body) and Playfair Display (display) from Google Fonts
 * with display=swap for non-blocking rendering.
 *
 * For self-hosting (recommended for GDPR compliance):
 *   1. Download fonts from https://fonts.google.com/specimen/Inter
 *      and https://fonts.google.com/specimen/Playfair+Display
 *   2. Place .woff2 files in this directory (assets/fonts/)
 *   3. Uncomment the @font-face blocks below
 *   4. Remove the @import line
 */

/* CDN variant (default — fast, cached across sites) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');

/* =====================================================================
 * Self-hosted variant — uncomment the whole block below and remove the
 * @import above once you've placed the .woff2 files in this directory.
 * =====================================================================

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./Inter-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('./Inter-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./PlayfairDisplay-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./PlayfairDisplay-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('./PlayfairDisplay-ExtraBold.woff2') format('woff2');
}

=====================================================================
*/
