/* 
* =============================================
* Font  
* font weight
* font style
* font-monospace
* =============================================
*/
/* font weight */
.font-light {
  font-weight: lighter;
}

.font-lighter {
  font-weight: lighter;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: bold;
}

.font-bolder {
  font-weight: bolder;
}

/* font style */
.font-normal {
  font-style: normal;
}

.font-italic {
  font-style: italic;
}

/* font-monospace */
.font-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace !important;
}

/*# sourceMappingURL=font.css.map */