/* WriteAmp self-hosted fonts — Paper & Ink.
 *
 * Variable fonts (single file per family, all weights):
 *   - Fredoka (display)   wght 300-700  → latin subset
 *   - Nunito Sans (body)  wght 200-1000 → latin subset
 *
 * font-display: swap keeps text visible during load; preload hints in the
 * page <head> fetch the two files early so the swap is invisible in practice.
 */
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/fredoka-latin.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("/fonts/nunito-sans-latin.woff2") format("woff2-variations");
}
