Assets

Fonts

Trajan Pro

Trajan Pro is used for headings, and connects the page content with the MAX.gov logo branding. As implemented, Trajan Pro is entirely small capitals. It is available in two weights (Regular and Bold). No italic versions are available.

Trajan Pro is a commercial font from Adobe. To use it on your system, it can be purchased at MyFonts.

To use it on a MAX.gov application, include the MAX Custom Bootstrap or MAX Fonts stylesheets and use these properties in your CSS:

/* Regular */
font-family: "Trajan Pro", Georgia, "Times New Roman", Times, serif;
font-weight: 400;

/* Bold */
font-family: "Trajan Pro", Georgia, "Times New Roman", Times, serif;
font-weight: 700;

Open Sans

Open Sans is our default base typeface, used for just about every UI element down to body text. It is available in five weights (Light, Regular, Semi-Bold, Bold, and Extra-Bold), each with an accompanying italic.

Open Sans is an open source font from Google. To use it on your system, it can be downloaded at Google Fonts.

To use it on a MAX.gov application, include the MAX Custom Bootstrap or MAX Fonts stylesheets and use these properties in your CSS:

/* Light */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;

/* Light Italic */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 300;

/* Regular */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;

/* Italic */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 400;

/* Semi-Bold */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;

/* Semi-Bold Italic */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 600;

/* Bold */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-stretch: condensed;
font-weight: 700;

/* Bold Italic */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 700;

/* Extra-Bold */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-stretch: condensed;
font-weight: 800;

/* Extra-Bold Italic */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 800;

Open Sans Condensed

Open Sans Condensed is a narrow version of Open Sans. It is available in three styles (Light, Light Italic and Bold). No bold italic version is available.

Open Sans Condensed is an open source font from Google. To use it on your system, it can be downloaded at Google Fonts.

To use it on a MAX.gov application, include the MAX Custom Bootstrap or MAX Fonts stylesheets and use these properties in your CSS:

/* Light */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-stretch: condensed;
font-weight: 300;

/* Light Italic */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-stretch: condensed;
font-style: italic;
font-weight: 300;

/* Bold */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-stretch: condensed;
font-weight: 700;

Font Awesome

Our standard icon library is the Font Awesome collection, which is implemented as an icon font. It is a single-weight icon font.

Font Awesome is an open source font from Dave Gandy. To use it on your system, it can be downloaded at Font Awesome.

To use it on a MAX.gov application, include the MAX Custom Bootstrap or MAX Fonts stylesheets and follow the Font Awesome guidelines.