/* ============================================================
   The display face, served from this site.

   NOT loaded from Google, and that is a decision not an oversight:

     1. The Content-Security-Policy in security.php is style-src
        'self'. Pointing at fonts.googleapis.com meant the browser
        REFUSED the stylesheet and every heading quietly fell back
        to Arial Narrow. It looked close enough to condensed that
        it went unnoticed in screenshots.
     2. Loosening the CSP to fix that would have sent every
        visitor's IP address to a third party on every page view,
        to save copying four files.
     3. One origin is one DNS lookup and one TLS handshake. This
        company's clients are on gravel roads outside Strathmore.

   Latin subset only. woff2 only — every browser that has supported
   CSS custom properties since 2016 supports it, and this
   stylesheet is useless without those.

   font-display: swap, so the words render immediately in the
   fallback and the face arrives when it arrives.
   ============================================================ */

@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('saira-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('saira-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('saira-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('saira-condensed-800.woff2') format('woff2');
}
