/* ===========================================================================
   FONTS — HOME PAGE. Platypi 500 ONLY.
   COM-TARGET section 2: on the .com's home page, headings marked
   font-weight: 600 render from the 500 face, because the browser has nothing
   else to use. Advance widths were probed directly — 500, 600 and 700 all
   measure 576.11px for the same string. If the .org loads a real Platypi 600
   here, the home page's headings will be HEAVIER than the .com's and the
   split test measures a font-weight difference instead of the design.
   Do not add a weight to this file.
   =========================================================================== */
/* --- AMENDED 2026-09-26 (attended run) -------------------------------------
   Google does not serve Platypi as static per-weight files. It serves ONE
   VARIABLE woff2 covering the whole weight axis; the 500, 600 and 800 URLs in
   its CSS all point at the same file. So `platypi-500.woff2` does not exist and
   never will. The real file is `assets/fonts/platypi-var.woff2`, 43,192 bytes,
   already uploaded to the server and byte-count verified on disk.

   Run A's intent is preserved exactly and is the important part: this family is
   pinned to WEIGHT 500 ONLY. Because the face is variable, declaring it across
   the full axis here would give the home page a REAL 600 and make its headings
   heavier than the .com's. Pinning to 500 makes any 600/700/800 request fall
   back to the 500 face — which is precisely what the .com does, since it ships
   only a static 500 there.
   Do not widen the font-weight range in this file.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Platypi";
  src: url("../fonts/platypi-var.woff2") format("woff2-variations"),
       url("../fonts/platypi-var.woff2") format("woff2"),
       /* N-8a FALLBACK. Reinstalling the theme ZIP DELETES assets/fonts/, because
          WordPress removes the old folder on "Replace installed with uploaded", and
          the woff2 is not in the ZIP. This second location lives outside the theme
          and survives a reinstall, so the font falls back instead of vanishing.
          Byte-identical copy, sha256-16 a50a271d9b565aa7. Keep both entries. */
       url("/wp-content/uploads/mcsv2-fonts/platypi-var.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
