The quick answer is yes.  You can probably think of your model more as a ViewModel.  Not an actual model from your database.
In your controller you would just populate the ViewModel from your database models
MyViewModel.cs
//put whatever properties your view will need in here 
public class MyViewModel 
{
    public string PropertyFromModel1 {get; set;}
    public string PropertyFromModel2 {get; set;}
}
MyController.cs
public ActionResult MyAction()
{ 
    //the only job your action should have is to populate your view model
    //with data from wherever it needs to get it
    Model1 model = GetFirstModelFromDatabase();
    Model2 model2 = GetSecondModelFromDatabase();
    MyViewModel vm = new MyViewModel 
    {
        PropertyFromModel1 = model.MyProperty;
        PropertyFromModel2 = model2.MyProperty;
    }
    return View(vm);
}
MyAction.cshtml
@Model.PropertyFromModel1
@Model.PropertyFromModel2
It's actually pretty standard practice to not use your raw domain models in your views, because I would say that typically don't match up exactly to what you want to display.