@use '../modules/typeface';

@mixin light {
  font-family: typeface.$full-font-stack;
  font-weight: 300 !important;
}

@mixin regular {
  font-family: typeface.$full-font-stack;
  font-weight: 400 !important;
}

@mixin medium {
  font-family: typeface.$full-font-stack;
  font-weight: 500 !important;
}

@mixin semibold {
  font-family: typeface.$full-font-stack;
  font-weight: 600 !important;
}

@mixin bold {
  font-family: typeface.$full-font-stack;
  font-weight: 700 !important;
}

@mixin heavy {
  font-family: typeface.$full-font-stack;
  font-weight: 800 !important;
}

@mixin black {
  font-family: typeface.$full-font-stack;
  font-weight: 900 !important;
}

@mixin regularMono {
  font-family: typeface.$full-font-stack-mono;
  font-weight: 400 !important;
}

@mixin mediumMono {
  font-family: typeface.$full-font-stack-mono;
  font-weight: 600 !important;
}

@mixin boldMono {
  font-family: typeface.$full-font-stack-mono;
  font-weight: 800 !important;
}
