/* ============================================================
   EWE · Fonts
   ------------------------------------------------------------
   EWE uses a single brand typeface: Volte (Sudtipos), with the
   licensed web fonts provided by EWE. Weights used:
   400 Regular, 600 Semibold, 700 Bold. (Medium/500 maps to 600.)
   ============================================================ */

@font-face {
  font-family: 'Volte';
  src: url('../assets/fonts/Volte-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Volte';
  src: url('../assets/fonts/Volte-Semibold.ttf') format('truetype');
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Volte';
  src: url('../assets/fonts/Volte-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* The single EWE brand typeface */
  --font-primary: 'Volte', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
