/* ---------------------------------------------------------------------------
   Recoleta — licensed display face, self-hosted.

   Drop these three files into public/fonts/ and the app picks them up:
     Recoleta-Regular.woff2   (400)
     Recoleta-Medium.woff2    (500)
     Recoleta-SemiBold.woff2  (600)

   This file deliberately lives in public/ rather than src/: webpack's
   css-loader tries to resolve url() paths at build time and fails the build if
   a font file is missing. Served statically, a missing file is just a runtime
   fallback to Georgia, so the app keeps working until the files arrive.
--------------------------------------------------------------------------- */
@font-face {
  font-family: 'Recoleta';
  src: url('/fonts/Recoleta-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('/fonts/Recoleta-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('/fonts/Recoleta-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
