/* Self-hosted fonts (Bebas Neue, DM Sans, Syne, Space Mono), downloaded from
   Google Fonts once and served from this domain. Self-hosted instead of
   loaded from fonts.googleapis.com/fonts.gstatic.com so visitor IPs are
   never sent to Google just to render text (a specifically litigated GDPR
   issue in Germany) - also one fewer third-party connection per page load.

   DM Sans and Syne are variable fonts - Google's own CSS2 API repeats the
   identical file per requested weight, so here one physical file is shared
   across all its @font-face weight declarations rather than duplicated. */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-400.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/dm-sans-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/space-mono-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-mono-700.woff2') format('woff2');
}
