/* Avantius — lopende tekst. Hoort bij het veld "Body" van de instelling
   "Enable self hosted fonts instead of Google Fonts".

   De fallback-regel staat hier bewust bij, niet in het koppenbestand: hij hoort
   bij DM Sans, en zonder de size-adjust-waarden ontstaat er tijdens het laden
   alsnog een kleine sprong in de tekst. Dat is de CLS-helft van font-display.

   De :root-variabelen staan ook hier, want dit bestand laadt op elke pagina. */

@font-face {
  font-family: 'DM Sans';
  src: url('dm-sans-latin.woff2') format('woff2-variations');
  font-weight: 400 700; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'DM Sans Fallback';
  src: local('Arial');
  size-adjust: 96.5%; ascent-override: 92%; descent-override: 24%; line-gap-override: 0%;
}

:root {
  --av-serif: 'Instrument Serif', Georgia, serif;
  --av-sans:  'DM Sans', 'DM Sans Fallback', system-ui, sans-serif;
}