@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
:root {
  * {
    font-family: 'Montserrat', sans-serif;
  }
  p {
    &.xl {
      font-size: 2.5rem;
    }
    &.large {
      font-size: 2.2rem;
    }
    &.big {
      font-size: 1.5rem;
    }
    &.medium {
      font-size: 1.2rem;
    }
    &.tiny {
      font-size: 0.8rem;
    }
    &.xs {
      font-size: 0.6rem;
    }
    &.thick {
      font-weight: 700;
    }
    &.bold {
      font-weight: 500;
    }
    &.light {
      font-weight: 300;
    }
  }
}
