/*
 * Self-hosted fonts for GDPR compliance
 * To use custom fonts:
 * 1. Download font files from Google Fonts or other sources
 * 2. Convert them to WOFF2 format for best compression
 * 3. Place them in the /fonts directory
 * 4. Uncomment and update the @font-face rules below
 */

/* Inter font definitions */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter-regular.woff2') format('woff2');
}

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

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

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

/* Using self-hosted Inter font for GDPR compliance */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

h1, h2, h3, .product-title, .hero-title {
    /* Serif system fonts for headings */
    font-family: Georgia, 'Times New Roman', serif;
}