/* ── Tryplicity Global Fonts ──────────────────────────────────
   To change fonts site-wide, update these three things:
   1. The @import URL (get it from fonts.google.com)
   2. --font-heading
   3. --font-body                                               */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
}

button, input, textarea, select {
  font-family: var(--font-body);
}
