/*
 * QRTasse – Lokale Schriftarten (reduziert auf 4 genutzte Schnitte)
 * DSGVO-konform: keine externen Font-Requests.
 * font-display: swap – Text sofort sichtbar, Font wird eingetauscht.
 *
 * Genutzte Schnitte:
 *   Cormorant Garamond 700     → Headlines, Serif-Kontext
 *   DM Sans 400                → Fließtext, Body
 *   DM Sans 600                → Buttons, Labels, Semi-Bold
 *   DM Mono 500                → Eyebrows, Mono-Labels
 */

/* ── Cormorant Garamond 700 (Bold) ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/CormorantGaramond-Bold.woff2') format('woff2');
}

/* ── DM Sans 400 (Regular) ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans/DMSans-Regular.woff2') format('woff2');
}

/* ── DM Sans 600 (SemiBold) ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/dm-sans/DMSans-SemiBold.woff2') format('woff2');
}

/* ── DM Mono 500 (Medium) ── */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-mono/DMMono-Medium.woff2') format('woff2');
}
