/* ==========================================================================
   RHZ Tutoring — Webfont declarations
   Display : Poppins      (geometric, echoes the RHZ wordmark)
   Body    : Nunito Sans  (warm, highly legible — parents & students)
   Accent  : Caveat       (hand-drawn marginalia / sketch motif)
   Files are local woff2 in assets/fonts. Nunito Sans & Caveat are variable.
   ========================================================================== */

/* ---- Poppins (static weights) ---- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/Poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/Poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/Poppins-700.woff2") format("woff2");
}

/* ---- Nunito Sans (variable: 400–800) ---- */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/NunitoSans-400.woff2") format("woff2");
}

/* ---- Caveat (variable: 600–700) ---- */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../assets/fonts/Caveat-600.woff2") format("woff2");
}
