/* =====================================================================
   AYXON Platform — Self-hosted Font Faces
   Downloads benoetigt (siehe FONTS_README.md):
     core/assets/fonts/montserrat-alternates-v17-latin-300.woff2
     core/assets/fonts/cormorant-garamond-v16-latin-regular.woff2
     core/assets/fonts/cormorant-garamond-v16-latin-italic.woff2
     core/assets/fonts/manrope-v15-latin-regular.woff2
     core/assets/fonts/manrope-v15-latin-500.woff2
     core/assets/fonts/manrope-v15-latin-600.woff2
   ===================================================================== */

/* AYXON-Logo-Schrift: MontserratAlt1, vom User direkt bereitgestellt
   (Office-Variante, NICHT die gwfh-Subset-Version — die hatte Glyph-Mapping-Bug).
   Zwei Weights selbst gehostet: Light (300) und Bold (700).
   Wird ueberall verwendet, wo das Wort AYXON als Wortmark erscheint. */
@font-face {
  font-family: 'Montserrat-Alt1';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/montserrat-alt1-light.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat-Alt1';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/montserrat-alt1-bold.ttf') format('truetype');
}

/* Fallback / generelle Montserrat-Alternates-Schrift (Google-Fonts-Version).
   Bleibt im Stack als Reserve, falls die TTF mal nicht laedt. */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/montserrat-alternates-v17-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v16-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/manrope-v15-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/manrope-v15-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/manrope-v15-latin-600.woff2') format('woff2');
}
