@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --font-family: "Inter", sans-serif;
  --thin: 100;
  --extra-light: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black: 900;
}

.regular {
  font-weight: var(--regular) !important;
}

.medium {
  font-weight: var(--medium) !important;
}

.bold {
  font-weight: var(--bold) !important;
}

.light {
  font-weight: var(--light) !important;
}

.semi-bold {
  font-weight: var(--semi-bold) !important;
}

.bold {
  font-weight: var(--bold) !important;
}

.extra-bold {
  font-weight: var(--extra-bold) !important;
}

.black {
  font-weight: var(--black) !important;
}