/**
 * Refrigerator Deluxe — viktmappning (CSS font-weight → fil):
 *
 *   400  regular     (lättast)
 *   700  bold
 *   800  extrabold   ← h1
 *   900  heavy       (tyngst, används inte som standard)
 *
 * h2: font-weight 700 (bold)
 *
 * Obs: font-weight 800 laddar INTE "Heavy" — det var tidigare felet.
 */

@font-face {
  font-family: "Refrigerator Deluxe";
  src: url("../fonts/refrigerator-deluxe/refrigerator-deluxe-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Refrigerator Deluxe";
  src: url("../fonts/refrigerator-deluxe/refrigerator-deluxe-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Refrigerator Deluxe";
  src: url("../fonts/refrigerator-deluxe/refrigerator-deluxe-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Refrigerator Deluxe";
  src: url("../fonts/refrigerator-deluxe/refrigerator-deluxe-heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
