/* En Coursera - Font Stylesheet */
/* Academic Editorial Typography */

/* Import distinctive fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=Source+Sans+Pro:wght@400;500;600;700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

/* Font Face Declarations */
body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', Georgia, serif;
}

.encrs-font-display {
  font-family: 'Crimson Pro', Georgia, serif;
}

.encrs-font-body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

.encrs-font-accent {
  font-family: 'Merriweather', Georgia, serif;
}

/* Typography Utilities */
.encrs-text-large {
  font-size: 1.25rem;
  line-height: 1.7;
}

.encrs-text-small {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.encrs-text-weight-normal {
  font-weight: 400;
}

.encrs-text-weight-medium {
  font-weight: 500;
}

.encrs-text-weight-semibold {
  font-weight: 600;
}

.encrs-text-weight-bold {
  font-weight: 700;
}

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

.encrs-text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.encrs-text-center {
  text-align: center;
}

.encrs-text-left {
  text-align: left;
}

.encrs-text-right {
  text-align: right;
}
