/* =========================
   HEEZY DESIGN SYSTEM
========================= */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap');

/* COLORS */
:root{

  --heezy-green:#2a4c4b;
  --heezy-beige:#f1eee5;
  --heezy-blue:#a4bdbf;
  --heezy-nude:#d2cfbc;

}

/* BASE */
body{
  font-family:'Inter', sans-serif;
  font-weight:400;
  color:var(--heezy-green);
  background:var(--heezy-beige);
}

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6{
  font-family:'Inter', sans-serif;
  font-weight:700;
  color:var(--heezy-green);
}

/* SUBHEADINGS / LABELS */
.hp-subtitle,
.hp-label,
.hp-small-text{
  font-family:'Inter', sans-serif;
  font-weight:300;
}

/* EXTRA LIGHT OPTION */
.hp-ultralight{
  font-weight:200;
}