/* Outfit Thin */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

/* Outfit ExtraLight */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

/* Outfit Light */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Outfit Regular */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  /* o normal */
  font-style: normal;
}

/* Outfit Medium */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Outfit SemiBold */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Outfit Bold */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  /* o bold */
  font-style: normal;
}

/* Outfit ExtraBold */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* Outfit Black */
@font-face {
  font-family: 'Outfit';
  src: url('https://app.luxonix.it/font/Outfit-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}




body {
  font-family: 'Outfit', sans-serif;
}

* {
  font-family: 'Outfit', sans-serif;
}

h1 {
  font-weight: 900;
  /* Outfit Black */
}

h2 {
  font-weight: 700;
  /* Outfit Bold */
}

.extra-bold {
  font-weight: 800;
  /* Outfit Extra-Bold */
}

.subtitle {
  font-weight: 600;
  /* Outfit SemiBold */
}

.regular-text {
  font-weight: 400;
  /* Outfit regular */
}

.light-text {
  font-weight: 300;
  /* Outfit Light */
}

.thin-text {
  font-weight: 100;
  /* Outfit Thin */
}