/* Self-hosted brand webfonts — replaces the render-blocking Google Fonts CDN link
   (perf + DSGVO). Both are variable fonts: a single woff2 covers the whole weight
   axis, latin subset (covers German äöüß). Archivo = display/headings,
   Hanken Grotesk = body. Enqueued in functions.php; the two files are preloaded. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/wp-content/themes/rhinobag/assets/fonts/archivo.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/wp-content/themes/rhinobag/assets/fonts/hankengrotesk.woff2') format('woff2');
}
