/* =========================================================================
   Sterling Design — self-hosted fonts
   -------------------------------------------------------------------------
   Oswald + Fira Sans currently load from Google Fonts (see the main plugin
   file). The Sterling SCRIPT is a custom logotype face, so it must be
   self-hosted: get sterling-script.woff2 / .woff from the brand designer,
   drop them in assets/fonts/, and the rule below picks them up.

   Until that file exists, .sd-script falls back to a generic cursive so
   nothing breaks — it just won't be the real logo face yet.
   ========================================================================= */

@font-face {
	font-family: "Sterling Script";
	src: url("../fonts/sterling-script.woff2") format("woff2"),
	     url("../fonts/sterling-script.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------------------------------
   OPTIONAL: to self-host Oswald + Fira Sans too (drop the GoogleFonts call
   from sterling-design-blocks.php), add their @font-face blocks here, e.g.

   @font-face {
       font-family: "Oswald";
       src: url("../fonts/oswald-600.woff2") format("woff2");
       font-weight: 600; font-style: normal; font-display: swap;
   }
   ------------------------------------------------------------------------- */
