/*
 * Selbst gehostete PT Sans-Schriftart.
 * Die eigentlichen Font-Dateien müssen noch in diesen Ordner gelegt
 * werden - siehe README.md in diesem Verzeichnis.
 * Bis dahin greift automatisch die Systemschrift als Fallback
 * (siehe font-family-Kette in style.css), die Seite bricht also nicht.
 */

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('PTSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('PTSans-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'PT Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('PTSans-Italic.woff2') format('woff2');
}
