/* Rubik Font Family CSS */

/* Rubik Light */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Rubik Regular */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Rubik Medium */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Rubik SemiBold */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Rubik Bold */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Rubik ExtraBold */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Rubik Black */
@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./Rubik-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Utility Classes */
.rubik-light {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.rubik-light-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-style: italic;
}

.rubik-regular {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rubik-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-style: italic;
}

.rubik-medium {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.rubik-medium-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-style: italic;
}

.rubik-semibold {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-style: normal;
}

.rubik-semibold-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-style: italic;
}

.rubik-bold {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.rubik-bold-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.rubik-extrabold {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-style: normal;
}

.rubik-extrabold-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-style: italic;
}

.rubik-black {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.rubik-black-italic {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Global font family application */
body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
}
