/*
  Self-hosted Cairo font — see Module 03 §20 (no Google Fonts CDN
  request at runtime, for both performance and privacy reasons).

  Place the actual .woff2 files in this folder before launch:
  cairo-400.woff2, cairo-600.woff2, cairo-700.woff2, cairo-800.woff2
  (download from https://fonts.google.com/specimen/Cairo, SIL Open Font License).
  This file is written and ready — it just needs the binaries added
  to the theme package, which I don't fabricate here.
*/

@font-face {
  font-family: 'Cairo';
  src: url('cairo-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cairo';
  src: url('cairo-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cairo';
  src: url('cairo-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cairo';
  src: url('cairo-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
