/*
 * Lokal gehostete Schriftarten (DSGVO-konform)
 * Inter und Playfair Display - WOFF2 optimiert
 *
 * Nur 2 Gewichte: 400 (normal) und 600 (semibold)
 * WOFF2 spart ~65% gegenueber TTF
 */

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

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

/* Map font-weight 500 and 700 to our available weights */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-400.woff2') format('woff2'),
         url('../fonts/inter-400.ttf') format('truetype');
}

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

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/playfair-display-600.woff2') format('woff2'),
         url('../fonts/playfair-display-600.ttf') format('truetype');
}
