/* Lokale Barlow Fonts — Dateien müssen manuell von Google Fonts heruntergeladen werden
   URL: https://fonts.google.com/specimen/Barlow
   URL: https://fonts.google.com/specimen/Barlow+Condensed
   
   Gewünschte Varianten:
   - Barlow: 400, 500, 600
   - Barlow Condensed: 600, 700
   
   Nach Download: woff2-Dateien in /css/fonts/ hochladen
   Dann diese CSS-Datei statt Google Fonts einbinden
*/

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./barlow-condensed-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./barlow-condensed-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./barlow-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./barlow-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./barlow-600.woff2') format('woff2');
}
