/* ============================================================
   encirkl — foundations.css
   Universal declarations shared by every stylesheet on the site.
   Load this BEFORE any other CSS file.

   Contains only declarations that are truly identical across
   themes (v2 light/dark, event-rebel). Theme-specific tokens
   (colors, surfaces, type scale) live in their respective files.
   ============================================================ */

/* Self-hosted fonts — single source of truth.
   Wider weight range to satisfy both v2 and event-rebel needs. */
@font-face{
  font-family:'Roca Two';
  src:url('../fonts/RocaTwo-Rg.woff2') format('woff2');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Nunito';
  src:url('../fonts/Nunito-Regular.woff2') format('woff2');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

/* Universal easing — used identically by every motion declaration. */
:root{
  --ease: cubic-bezier(.22, 1, .36, 1);
}
