/* ==========================================================================
   Abbey — Global Font System
   ==========================================================================
   The ONLY place font choices should be changed. Every page links this
   stylesheet and consumes fonts exclusively through the variables below —
   no page should declare its own @font-face or hardcode a font-family.
   ========================================================================== */

@font-face {
  font-family: 'Sanseriffic';
  src: url('/Sanseriffic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --serif: 'Sanseriffic', serif;      /* headings, page titles, large display text */
  --sans:  'Sanseriffic', sans-serif; /* body copy, buttons, prices, forms */
  --ui:    'Sanseriffic', sans-serif; /* nav links, labels, footer, small system text */
}
