﻿/*-- ------------------------------------------------------------------------------------------------------------------
     Purpose: to define additional fonts that are not traditionaly standard on local devices

     Note: We must reference both an .eot and .ttf font.  This is because Internet Explorer only uses its own format.
           As such, we must first import that .eot file, and then move on to the different formats for Firefox, Safari, etc.
        >> It is essential that the .eot version is loaded first.

     Some free Fonts can be located at: https://www.fontyukle.net
  -- ------------------------------------------------------------------------------------------------------------------ --*/

@font-face {
    font-family: 'Adobe Garamond Regular';
    src: url('../fonts/adobe_garamond_regular-webfont.eot'); /* IE9 Compat Modes */
    src: url('../fonts/adobe_garamond_regular-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/adobe_garamond_regular-webfont.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/adobe_garamond_regular-webfont.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/adobe_garamond_regular-webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('../fonts/adobe_garamond_regular-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'Adobe Garamond Italic';
    src: url('../fonts/Adobe Garamond Italic.ttf')  format('truetype'); /* Safari, Android, iOS */
}
@font-face {
    font-family: 'Adobe Garamond Semibold';
    src: url('../fonts/Adobe Garamond Semibold.ttf')  format('truetype'); /* Safari, Android, iOS */
}
