/* Swipix — font faces & families. Core family: Montserrat.

   SUBSTITUTION: no font binaries shipped with the .fig, so Montserrat is loaded
   from Google Fonts (variable, 100–900, incl. italic). Swap in real files when
   they arrive. Montserrat is the only family in the system. */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root{
  --font-core:"Montserrat",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --font-display:var(--font-core);
  --font-body:var(--font-core);
  /* Montserrat weights as named in the spec sheet's Weight: rows */
  --weight-regular:400;
  --weight-medium:500;
  --weight-semibold:600;
  --weight-bold:700;
  --weight-extrabold:800;
  --weight-black:900;
}
