A fonte do Google não funciona com o bootstrap

Estou tentando usar a fonte do Google em uma página. No meu html eu usei:

<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>

E no meu CSS:

@import url('http://fonts.googleapis.com/css?family=Open+Sans');

Ainda assim, quando eu uso "Open Sans" com o atributo font-family, ele permanece no Arial.

body
{
    background-color: #F1F1F2;
    font-family: "Open Sans", Arial;
}

questionAnswers(3)

yourAnswerToTheQuestion