/* ============================================================= */
/*  LOCAL FONT‑DEFINITIONEN (alle Pfade relativ zu css/ )      */
/* ============================================================= */

/* ------------------- Montserrat ------------------- */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/Montserrat-Regular.woff')  format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat-Bold.woff')  format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ------------------- Oswald ------------------- */
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.woff2') format('woff2'),
         url('../fonts/Oswald-Regular.woff')  format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Bold.woff2') format('woff2'),
         url('../fonts/Oswald-Bold.woff')  format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ------------------- Changa One ------------------- */
@font-face {
    font-family: 'Changa One';
    src: url('../fonts/ChangaOne-Regular.woff2') format('woff2'),
         url('../fonts/ChangaOne-Regular.woff')  format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ------------------- Roboto Mono ------------------- */
@font-face {
    font-family: 'Roboto Mono';
    src: url('../fonts/RobotoMono-Regular.woff2') format('woff2'),
         url('../fonts/RobotoMono-Regular.woff')  format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Mono';
    src: url('../fonts/RobotoMono-Bold.woff2') format('woff2'),
         url('../fonts/RobotoMono-Bold.woff')  format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ------------------------------------------------------------- */
/* OPTIONAL: Globale Standard‑Schriftart‑Zuweisungen (nach Bedarf) */
body {
    font-family: 'Montserrat', Arial, sans-serif;   /* Haupttext */
}
h1, h2, h3, .t--acsent, .t--mob_title {
    font-family: 'Oswald', Arial, sans-serif;      /* Überschriften */
}
code, pre, .some‑code‑class {
    font-family: 'Roboto Mono', monospace;         /* Code‑Blöcke */
}