/* Corporate-Webfont fuer alle selbst veroeffentlichten HTML (PK-Domain).
   Schrift: URW Corporate S. Body = Light, Ueberschriften h1-h4 = Medium.

   LIZENZ (URW Webfonts EULA): nur Auslieferung eigener Websites vom eigenen
   Webserver. NICHT in PDF einbetten, NICHT als Font-Dateien an Dritte
   weitergeben, Pageview-Cap beachten. woff2-Quelle (gitignored, lokal):
   admin-pk/_meta/schriften/corporate-a-s/web/.

   Web-Lizenz aller S-Schnitte: FontShop/Monotype 2016 (Re_FontShop_CorporateAS.pdf):
   Corporate S Light Web (Pos. 284983), Light Italic Web (284989), Medium Web (284987).
   Provenienz der woff2:
     corporate-s-light.woff2         = Kit-UUID 23edaca0-… (Outline-Abgleich)
     corporate-s-medium.woff2        = Kit-UUID f7a452cc-… (Outline-Abgleich)
     corporate-s-light-italic.woff2  = aus lizenzierter Desktop-CorporateS-LightItalic.otf
                                       erzeugt (war im 2022-Web-Kit nicht enthalten).
   Kein Medium-Italic lizenziert -> bold-italic wird synthetisch geneigt.

   Einbindung pro Quarto-Kurs: woff2 nach <kurs>/fonts/corporate/ (gitignored),
   in _quarto.yml `resources: [fonts/corporate]` und diese css unter format.html.css.
   url() ist relativ zur css-Datei; Kurs bindet die css projektlokal ein, damit
   sie im _site-Root landet und fonts/corporate/ daneben aufgeloest wird. */

@font-face {
  font-family: "Corporate S";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/corporate/corporate-s-light.woff2") format("woff2");
}
@font-face {
  font-family: "Corporate S";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/corporate/corporate-s-medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Corporate S";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/corporate/corporate-s-light-italic.woff2") format("woff2");
}

:root {
  --corporate-sans: "Corporate S", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--corporate-sans);
}

h1, h2, h3, h4,
.navbar-brand, .navbar-nav {
  font-family: var(--corporate-sans);
  font-weight: 700;
}
