// Mixins
// Background Cover Mixin
@mixin background-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

// Font Mixins
@mixin body-font {
  font-family: 'Source Sans Pro';
  font-weight: 300;
}
@mixin heading-font {
  font-family: 'Merriweather';
  font-weight: 700;
}
