Skip to content

Instantly share code, notes, and snippets.

@lrobeson
Created October 3, 2013 21:34
Show Gist options
  • Save lrobeson/6817503 to your computer and use it in GitHub Desktop.
Save lrobeson/6817503 to your computer and use it in GitHub Desktop.
Sass partial - font face declarations for cloud.typography.com hosted fonts
/**
* @file
* Font face declarations for Typography.com hosted fonts
*/
/* replace this URL, it will be specific to each project */
@import "//cloud.typography.com/123456/789123/css/fonts.css";
/* Gotham Bold */
@font-face {
font-family: "Gotham A", "Gotham B";
font-style: normal;
font-weight: 700;
}
/* Gotham Book */
@font-face {
font-family: "Gotham A", "Gotham B";
font-style: normal;
font-weight: 400;
}
/* Gotham Medium */
@font-face {
font-family: "Gotham A", "Gotham B";
font-style: normal;
font-weight: 500;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment