/* Dream Villa Connect self-hosted @font-face declarations.

   Repo convention is SELF-HOSTED fonts: no Google Fonts CDN, so the host honors a strict
   CSP. The library (Snowtree.DreamVillaConnect.Razor) only references the families through
   the --dvc-font-sans / --dvc-font-display / --dvc-font-signature tokens; the host owns the
   actual faces. The three families - "Plus Jakarta Sans" (sans/body), "Bricolage Grotesque"
   (display), "Caveat" (signature) - are all OFL, served from wwwroot/fonts/. */

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  src: url("../fonts/plus-jakarta-sans.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  src: url("../fonts/bricolage-grotesque.woff2") format("woff2");
}

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