<style type="text/css">
 /**
  * The fonts included are copyrighted by the vendor listed below.
  *
  * Vendor:      Mark Simonson Studio
  * License URL: https://www.fontspring.com/licenses/mark-simonson-studio/webfont
  *
  *
  */

 <%
   # Copied from URLUtils
   join = ->(*parts) { File.join(parts.select(&:present?)) }
 %>

 @font-face {
   /* 'ProximaNovaSoft-Regular' */
   font-family: 'Proxima Nova Soft';
   src: url('<%= join.call(font_path, "proximanovasoft-regular-webfont.eot") %>');
   src: url('<%= join.call(font_path, "proximanovasoft-regular-webfont.eot?#iefix") %>') format('embedded-opentype'),
   url('<%= join.call(font_path, "proximanovasoft-regular-webfont.woff2") %>') format('woff2'),
   url('<%= join.call(font_path, "proximanovasoft-regular-webfont.woff") %>') format('woff'),
   url('<%= join.call(font_path, "proximanovasoft-regular-webfont.ttf") %>') format('truetype'),
   url('<%= join.call(font_path, "proximanovasoft-regular-webfont.svg#proxima_nova_softregular") %>') format('svg');
   font-weight: 400;
   font-style: normal;
 }

 @font-face {
   /* 'ProximaNovaSoft-Medium' */
   font-family: 'Proxima Nova Soft';
   src: url('<%= join.call(font_path, "proximanovasoft-medium-webfont.eot") %>');
   src: url('<%= join.call(font_path, "proximanovasoft-medium-webfont.eot?#iefix") %>') format('embedded-opentype'),
   url('<%= join.call(font_path, "proximanovasoft-medium-webfont.woff2") %>') format('woff2'),
   url('<%= join.call(font_path, "proximanovasoft-medium-webfont.woff") %>') format('woff'),
   url('<%= join.call(font_path, "proximanovasoft-medium-webfont.ttf") %>') format('truetype'),
   url('<%= join.call(font_path, "proximanovasoft-medium-webfont.svg#proxima_nova_softmedium") %>') format('svg');
   font-weight: 500;
   font-style: normal;
 }

 @font-face {
   /* 'ProximaNovaSoft-Semibold' */
   font-family: 'Proxima Nova Soft';
   src: url('<%= join.call(font_path, "proximanovasoft-semibold-webfont.eot") %>');
   src: url('<%= join.call(font_path, "proximanovasoft-semibold-webfont.eot?#iefix") %>') format('embedded-opentype'),
   url('<%= join.call(font_path, "proximanovasoft-semibold-webfont.woff2") %>') format('woff2'),
   url('<%= join.call(font_path, "proximanovasoft-semibold-webfont.woff") %>') format('woff'),
   url('<%= join.call(font_path, "proximanovasoft-semibold-webfont.ttf") %>') format('truetype'),
   url('<%= join.call(font_path, "proximanovasoft-semibold-webfont.svg#proxima_nova_softsemibold") %>') format('svg');
   font-weight: 600;
   font-style: normal;
 }

 @font-face {
   /* 'ProximaNovaSoft-Bold' */
   font-family: 'Proxima Nova Soft';
   src: url('<%= join.call(font_path, "proximanovasoft-bold-webfont.eot") %>');
   src: url('<%= join.call(font_path, "proximanovasoft-bold-webfont.eot?#iefix") %>') format('embedded-opentype'),
   url('<%= join.call(font_path, "proximanovasoft-bold-webfont.woff2") %>') format('woff2'),
   url('<%= join.call(font_path, "proximanovasoft-bold-webfont.woff") %>') format('woff'),
   url('<%= join.call(font_path, "proximanovasoft-bold-webfont.ttf") %>') format('truetype'),
   url('<%= join.call(font_path, "proximanovasoft-bold-webfont.svg#proxima_nova_softbold") %>') format('svg');
   font-weight: 700;
   font-style: normal;
 }
</style>
