/*
 * DSGVO-konforme lokale Schrifteinbindung
 * Keine Verbindung zu externen Servern (Google Fonts etc.)
 * Schriften werden ausschließlich vom eigenen Server geladen.
 *
 * Benötigte Dateien im Ordner /fonts/:
 *   DM Sans: dm-sans-300.woff2, dm-sans-400.woff2, dm-sans-500.woff2, dm-sans-600.woff2
 *   DM Mono: dm-mono-400.woff2, dm-mono-500.woff2
 *
 * Download-Anleitung: siehe download-fonts.sh
 */

/* ── DM Sans ─────────────────────────────────────────── */

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/dm-sans-300.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/dm-sans-500.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/dm-sans-600.woff2') format('woff2');
}

/* ── DM Mono ─────────────────────────────────────────── */

@font-face {
    font-family: 'DM Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-mono-400.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/dm-mono-500.woff2') format('woff2');
}