1/* Fonts */
2
3// Import Google Web Fonts
4@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
5
6
7// Set local icon font
8@font-face {
9  font-family: '#{$icons}';
10  font-style: normal;
11  font-weight: 400;
12  src: url(../fonts/icons/#{$icons}.eot);
13  src: url('../fonts/icons/#{$icons}.eot?#iefix') format('ie9-skip-eot'),
14       url('../fonts/icons/#{$icons}.woff') format('woff'),
15       url('../fonts/icons/#{$icons}.ttf')  format('truetype');
16}
17
18// To include your own, local copies of fonts, use the following template
19//
20//@font-face {
21//  font-family: '#{$some-font-variable}';
22//  font-style: normal;
23//  font-weight: 400;
24//  src: url(../fonts/icons/#{$some-font-variable}.eot);
25//  src: url('../fonts/icons/#{$some-font-variable}.eot?#iefix') format('ie9-skip-eot'),
26//       url('../fonts/icons/#{$some-font-variable}.woff') format('woff'),
27//       url('../fonts/icons/#{$some-font-variable}.ttf')  format('truetype');
28//}
29