Comment utiliser Roboto Light / Thin à partir de polices google dans Chrome

J'ai de la difficulté à l'aide de Roboto polices dans le navigateur google Chrome.. plus précisément je n'arrive pas à obtenir Condensée et Mince/Légère, etc. la police de poids. J'ai télécharger tous les 3 polices complètes:

@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek-ext,greek,vietnamese);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext,cyrillic-ext,cyrillic,greek-ext,greek,vietnamese);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700&subset=latin,latin-ext,greek-ext,greek,vietnamese,cyrillic,cyrillic-ext);

puis-je les utiliser dans des déclarations comme:

Roboto Condensed

.mas-1st-col {
font-family: Roboto !important;
font-size: 8pt; !important
font-weight: 200 !important;
font-stretch: condensed !important;
}

Roboto Lumière

span.f, div.f.kv + div.f.slp {
font-family: Roboto !important;
font-size: 8pt !important;
font-weight: 200 !important;
}

Cependant, ce qu'il me donne est simple Roboto. Si je change le "Condensé" une police de la famille "Roboto Condensed" il fonctionne ... et qui a du sens car, apparemment, google chrome est fin à adopter font-stretch. Toutefois, la modification de la police-famille "roboto condensed" n'est pas utiliser le briquet font-weight (300), il reste à 400. Même si je change l' font-weight à 300, dont il a spécifiquement, il restera à 400 (commutation au niveau de la console, entre 200, 300 et 400 n'a aucun effet). Je dois mettre "Roboto Condensed Light", plus précisément, pour obtenir la lumière font-weight.

Et que dire des autres? "Roboto Mince" n'était pas spécifiquement téléchargé ou installé dans un @font-face ... je ne devrais pas avoir à utiliser des noms comme "roboto mince" quand je veux juste un font-weight, devrais-je?

Détails

En raison de Terry grande suggestion, voici le code correspondant essentiellement dans son intégralité:

    function _miscCSS () {
        var css = function(){/*
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek-ext,greek,vietnamese);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext,cyrillic-ext,cyrillic,greek-ext,greek,vietnamese);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700&subset=latin,latin-ext,greek-ext,greek,vietnamese,cyrillic,cyrillic-ext);

 ...[css declarations follow]...

*/}.toString().slice(14,-3); 
        return css;
    }

    var misc_css = '<style>'+ _miscCSS() +'</style>';
    jQ(misc_css).appendTo('head');

source d'informationauteur roberto tomás