/* Inter @font-face. Previously declared inside public/themes/woodmart/css/
   brand-colors.css (Task 10 deletes that whole directory) -- moved here,
   not into the project's own SCSS bundle, because a font file lives under
   public/ and is served as a literal browser URL, not run through
   webpack's asset pipeline the way an import from src/ would be. This
   file is linked with a base-path-aware asset() href (see layout.tsx),
   exactly like brand-colors.css was, and its own url() below stays
   relative to ITS location so the deploy build's subfolder prefix
   resolves correctly without this file having to know what that prefix
   is -- same mechanism, same reasoning as
   shared/styles/components/_special-offer-banner.scss's own header
   comment on why an absolute url() in a stylesheet is the one asset
   reference that 404s in a subfolder. */
@font-face {
  font-family: "Inter";
  src: url("./Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
