/*
 * Loveify — lokale Inter-Schriftarten (Self-Hosted, DSGVO-konform)
 *
 * Ersetzt die externe Einbindung über fonts.googleapis.com / fonts.gstatic.com.
 * Es findet keine Verbindung zu Google statt. Alle Schriftdateien werden vom
 * eigenen Server ausgeliefert.
 *
 * Subsets: latin + latin-ext (deutsche Umlaute, weiteres mitteleuropäisches Alphabet)
 * Formate: nur woff2 (alle modernen Browser >2018 unterstützen es)
 * font-display: swap — Text bleibt sofort sichtbar, Inter wird ausgetauscht sobald geladen
 */

/* Inter — Regular (400) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}

/* Inter — Medium (500) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('inter-v20-latin_latin-ext-500.woff2') format('woff2');
}

/* Inter — SemiBold (600) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* Inter — Bold (700) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('inter-v20-latin_latin-ext-700.woff2') format('woff2');
}

/* Inter — ExtraBold (800) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('inter-v20-latin_latin-ext-800.woff2') format('woff2');
}

/* Inter — Black (900) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('inter-v20-latin_latin-ext-900.woff2') format('woff2');
}
