/* Source Sans 3 and Source Serif 4 for the Uptown Medical Specialists site.

   The Archivo face was removed 2026-08-26: it was Direction D and G's heading face, and
   an audit of all 21 artboards found Direction E uses only these two families, plus the
   ui-monospace of the placeholder captions. Its @font-face and its 64 KB file are gone.
 Latin subset, self-hosted: assertion 5, and the same objection as everywhere
   else here - nobody reading a clinic's material should be announced to Google.

   ONE FILE PER FAMILY. Both are VARIABLE fonts, and Google's css2 endpoint hands back
   the identical file for every weight asked for - nine requests, three distinct files,
   544 KB where 181 KB does the same job. Declared with a weight RANGE instead, which is
   what a variable font wants. Regenerate with `node uptown-render.mjs --fonts`. */

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/source-sans-3-latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/source-serif-4-latin.woff2) format('woff2');
}
